home *** CD-ROM | disk | FTP | other *** search
- package mx.events
- {
- import flash.events.Event;
- import mx.core.mx_internal;
-
- use namespace mx_internal;
-
- public class TweenEvent extends Event
- {
- mx_internal static const VERSION:String = "3.0.0.0";
-
- public static const TWEEN_END:String = "tweenEnd";
-
- public static const TWEEN_START:String = "tweenStart";
-
- public static const TWEEN_UPDATE:String = "tweenUpdate";
-
- public var value:Object;
-
- public function TweenEvent(param1:String, param2:Boolean = false, param3:Boolean = false, param4:Object = null)
- {
- super(param1,param2,param3);
- this.value = param4;
- }
-
- override public function clone() : Event
- {
- return new TweenEvent(type,bubbles,cancelable,value);
- }
- }
- }
-
-